home *** CD-ROM | disk | FTP | other *** search
- Len(v : STRING) : INTEGER;
-
- Returns the number of characters in v.
-
- Pos(SubStr, Str : STRING) : INTEGER;
-
- Searches for SubStr within Str and returns an integer value that is the index of the first character of SubStr within Str.
-
- Concat(Str1, ..., Strn : STRING) : STRING;
-
- Concatenates all the parameters in the order they are written and returns the concatenated string.
-
- Copy(Source : STRING; Index, Count : INTEGER) : STRING;
-
- Returns a string containing count characters from source, beginning at source[Index].
-
- Delete(VAR Source : STRING; Index, Count : INTEGER);
-
- Removes Count characters from Source beginning at Source[Index].
-
- Insert(Source : STRING; VAR Dest : STRING; Index : INTEGER);
-
- Insert Source into Dest at location Dest[Index].
-
- Str2Num(s : STRING) : REAL;
-
- Converts numeric string value to a real number.
-
- Num2Str(DecimalPlace : INTEGER; V : REAL) : STRING;
-
- Converts a REAL value to a STRING.
-
- Num2StrF(V : REAL) : STRING;
-
- Converts a REAL value into a STRING. The numeric value will be displayed in the current unit settings of the drawing.
-
- UprString(VAR V : STRING);
-
- Converts all characters in V to uppercase.
-
-